@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
  color: #333;
  font-family: arial, sans-serif;
  font-size: 62.5%;
}

@media (max-width: 1050px) and (min-width: 768px) {
  html {
    font-size: 0.952vw;}
}

body {
  position: relative;
  background-color: #fff;
  font-feature-settings: "palt";
  line-height: 1;
}

body a {
  transition-duration: 0.12s;
}

main {
  padding-top: 11rem;
}

:root {
  --main-color: #0068b7;
}

img {
  width: 100%;
  height: auto;
}

.link-btn {
  width: 30rem;
  margin: 0 auto;
  background-color: var(--main-color);
}

.link-btn a {
  position: relative;
  /*display: block;*/
  min-height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);
  text-align: center;
  /*padding: 2rem 2rem 2rem 0;*/
  /*padding: 1rem 4rem 1rem 2rem;*/
  padding: 1rem 4rem 1rem 4rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.333;
  transition: box-shadow 0.12s, background-color 0.12s;
}


.link-btn a.hover {
  box-shadow: none;
  background-color: #137bca;
}

.link-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.breadcrumb {
  width: 100%;
  display: flex;
  align-items: center;
  height: 5rem;
  background-color: #f2f6f8;
  padding: 0 6rem;
}

/* ----------------------------------------
blank
---------------------------------------- */
header .nav-detail img.i-blank{
  width: 10px;
  height: auto;
  vertical-align: middle;
  margin: 0 0 0 0.5rem;
}

header .nav-detail dt.blank a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url(/images2/common/icon-blank.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
}
/*header .nav-detail a.blank::after{
  content:none;
}*/

main .link-btn a.blank{
  padding: 2rem;
}

main a.blank::after {
  position: static;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  border:none;
  transform: none;
}
main a.blank::after,
footer a.blank::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url(/images2/common/icon-blank.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
}

main a.blank::after,
footer a.blank::after {
  filter: brightness(0) invert(1) opacity(0.8);
}




/* ----------------------------------------
Header
---------------------------------------- */

header {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  min-width: 40rem;
  width: 26%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  background-color: #fff;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 11rem;
  background-color: var(--main-color);
  padding: 0 6rem;
}

header .header-logo {
  position: relative;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: opacity 0.12s;
}

header .header-logo a {
  display: flex;
  align-items: center;
  font-weight: normal;
}

header .header-logo a.hover {
  opacity: 0.8;
}

header .header-logo img {
  width: 21.2rem;
}

header .header-logo span {
  /*padding: 0.7rem 0 0 1.2rem;*/
  padding: 0 0 0.8rem 1.2rem;
  font-size: 1.1rem;
}

header .sub-nav,
header .main-nav {
  display: flex;
  justify-content: flex-end;
}

/*
header .sub-nav li:first-of-type {
  padding-right: 2rem;
}

header .sub-nav li:not(:first-of-type) {
  padding-left: 2rem;
  border-left: 1px solid #015595;
}
*/
header .sub-nav li:not(:first-of-type) {
  padding-left: 2rem;
}
header .sub-nav li:nth-of-type(2){
  padding-right: 2rem;
  border-right: 1px solid #015595;
} 

header .sub-nav a {
  color: #fff;
  font-size: 1.4rem;
}

header .sub-nav a[data-name="global"] {
  position: relative;
  padding-left: 2.5rem;
}

header .sub-nav a[data-name="global"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  max-width: 2.3rem;
  height: 100%;
  max-height: 2.3rem;
  background: url(/images2/common/icon-globalnetwork-white.png) no-repeat center /
    contain;
}

header .sub-nav a.hover {
  text-decoration: underline;
  text-underline-offset: 0.1rem;
}

header .sub-nav .btn-brandsite a{
  display: block;
  cursor: pointer;
  border-radius: 3px;
  padding-inline: 1.5rem;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 3rem;
  transition: background-color 0.12s;
  
  background-color: #094898;
  color: #fff;
}
header .sub-nav .btn-brandsite a.hover{
  background-color: #3e6eaa;
  text-decoration: none;
  text-underline-offset:auto;
}
header .sub-nav{
  align-items: center;
}


header .main-nav {
  gap: 4.8rem;
}

header .main-nav > dl dt.nav-btn,
a.nav-btn {
  margin-top: 1.9rem;
}

header .nav-btn span {
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.12s;
}

header .nav-btn span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #50a6e8;
  transition: transform 0.12s;
  transform: scale(0, 1);
  transform-origin: center top;
}

header .nav-btn a.open span,
header .nav-btn span:hover,
.page-product header .link-product span,
.page-corporate header .link-corporate span,
.page-sustainabillity header .link-sustainabillity span,
.page-special header .link-special span {
  color: #50a6e8;
}

header .nav-btn a.open span::before,
header .nav-btn span:hover::before,
.page-product header .link-product span::before,
.page-corporate header .link-corporate span::before,
.page-sustainabillity header .link-sustainabillity span::before,
.page-special header .link-special span::before {
  transform: scale(1, 1);
}

header .main-nav > dl > dd {
  position: absolute;
  top: 11rem;
  left: 0;
  display: none;
  z-index: 10;
  width: 100%;
}

/* megamenu */
header .nav-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-top: 1px solid #e9ecee;
}

header .nav-detail dl {
  padding: 4rem 6rem 6rem;
}

header .nav-detail dt {
  position: relative;
  display: inline-block;
  padding-left: 3.7rem;
}

header .nav-detail dt a {
  transition: color 0.12s;
}

header .nav-detail dt a.hover {
  color: #0068b7;
}

header .nav-detail dt span {
  font-size: 1.8rem;
  padding-right: 1rem;
}

header .nav-detail dt b {
  font-size: 2.4rem;
}

header .nav-detail dt::before,
header .nav-detail dt::after {
  content: "";
  position: absolute;
  top: 50%;
}

header .nav-detail dt::before {
  width: 2.4rem;
  left: 0;
  height: 2.4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--main-color);
}

header .nav-detail dt::after {
  left: 0.6rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

header .nav-detail-main-list {
  display: flex;
  gap: 4rem;
  margin-top: 3.7rem;
}

header .nav-detail-main-list figure {
  overflow: hidden;
}

header .nav-detail-main-list figure img {
  max-width: 31.5rem;
  max-height: 17.4rem;
  transition: transform 0.5s ease-out, opacity 0.12s;
}

header .nav-detail-main-list a.hover img,
header .nav-detail-sub-list a.hover img {
  /*transform: scale(1.06) rotate(0.1deg);*/
  transform: scale(1.06);
  opacity: 0.8;
}

header .nav-detail-main-list a.hover .link-title,
header .nav-detail-sub-list a.hover .link-title,
header .nav-detail-text-list a.hover .link-title,
header .nav-detail-maintext-list a.hover .link-title{
  color: #0068b7;
}

header .link-title {
  position: relative;
  display: inline-block;
  margin-top: 1.4rem;
  padding-left: 2rem;
  font-size: 1.6rem;
  transition: color 0.12s;
}

header .link-title::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  transform: rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
}

header .nav-detail-sub-list {
  display: flex;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  gap: 2.4rem;
  max-width: 138rem;
  margin-top: 4rem;
  border-top: 1px solid #e9ecee;
  padding-top: 4rem;
}
header .nav-detail-sub-list li{
  width: calc((100% - 12rem) / 6);
}

header .nav-detail-sub-list figure {
  overflow: hidden;
}

header .nav-detail-sub-list figure img {
  max-width: 21rem;
  max-height: 11.6rem;
  transition: transform 0.5s ease-out, opacity 0.12s;
}

header .nav-detail-maintext-list,
header .nav-detail-text-list {
  max-width: 138rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  margin-top: 4rem;
}

header .nav-detail-maintext-list li,
header .nav-detail-text-list li {
  max-width: 31.5rem;
  width: calc((100% - 12rem) / 4);
  border-top: 1px solid #e9ecee;
  padding: 2.2rem 0;
}

header .nav-detail-maintext-list li a,
header .nav-detail-text-list li a {
  display: inline-block;
}

header .nav-detail-maintext-list .link-title,
header .nav-detail-text-list .link-title {
  margin-top: 0;
}

header .close {
  width: 100%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 20%);
  background-color: #e9ecee;
  padding: 1.9rem 0;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.12s;
}

header .close:hover {
  opacity: 0.8;
}

header .close span {
  position: relative;
  padding-left: 3rem;
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: bold;
}

header .close span::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  transform: rotate(-45deg);
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  margin-right: 1rem;
  padding-top: 0.5rem;
}

/* modal */
.modal-global-wrapper {
  position: relative;
  width: 100%;
  max-width: 138rem;
  margin: 5.4rem auto;
}

#modal-global > .inner {
  background-color: #1454a5;
  padding: 8rem 3.8rem 6rem;
}

#modal-global .global-nav {
  column-count: 2;
}

#modal-global .sec-modal {
  width: calc(100% - 4.4rem);
  margin: 0 2.2rem;
  break-inside: avoid;
}

#modal-global .sec-modal h2 {
  background-color: #114b92;
  padding: 1rem 1.9rem;
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
}

#modal-global .sec-modal ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 2rem;
  margin-top: 2rem;
}

#modal-global .sec-modal.global ul,
#modal-global .sec-modal.america ul {
  height: 13.7rem;
}

#modal-global .sec-modal.europe ul {
  padding-bottom: 4rem;
}

#modal-global .sec-modal ul li {
  width: 50%;
}

#modal-global .sec-modal.global ul li {
  width: 100%;
}

#modal-global .sec-modal ul li:nth-child(2n) {
  padding-left: 2.3rem;
}

#modal-global .sec-modal ul li .country {
  color: #fff;
  font-size: 1.6rem;
}

#modal-global .sec-modal ul li .corp {
  display: block;
  margin-top: 0.7rem;
  color: #d9e5f4;
  font-size: 1.2rem;
}

#modal-global .sec-modal ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13.6rem;
  height: 3.2rem;
  margin-top: 0.8rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 10%);
  background-color: #568ccf;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  transition: background-color 0.12s ease, box-shadow 0.12s ease;
}

#modal-global .sec-modal ul li a:hover {
  box-shadow: none;
  background-color: #3b71b6;
}

#modal-global .sec-modal ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

#modal-global .sec-modal ul li a.first {
  margin-right: 1rem;
}

#modal-global .sec-modal ul li a:not(::first-line) {
  font-size: 1.1rem;
}

#modal-global .link-block {
  max-width: 126rem;
  margin: 6rem auto 0;
  background-color: #fff;
}
#modal-global .link-block .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 11rem;
  padding: 2rem;
}
#modal-global .link-block p {
  font-size: 1.4rem;
  line-height: 1.2857;
}

#modal-global .link-block .link-btn {
  max-width: 52rem;
  width: 100%;
  margin: 0;
  background-color: var(--main-color);
}

#modal-global .link-block .link-btn a {
  position: relative;
  display: grid;
  place-items: center;
  height: 8rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  transition: background-color 0.12s ease, box-shadow 0.12s ease;
}

#modal-global .link-block .link-btn a:hover {
  box-shadow: none;
}

#modal-global .link-block .link-btn a::after {
  right: 10%;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}


/* ----------------------------------------
News
---------------------------------------- */
#top-news {
  margin-top: 8.6rem;
  padding: 0 6rem;
}

#top-news .inner {
  max-width: 138rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

#top-news .news-content{
  /*width: 100%;*/
  width: calc(100% - 40px - 340px);
}

#top-news .news-content h2 {
  font-size: 3.6rem;
  font-weight: bold;
}

#top-news .news-content ul {
  /*max-width: 100rem;*/
  margin-top: 3rem;
}

#top-news .news-content li {
  display: flex;
  font-size: 1.6rem;
  padding: 2rem 2rem;
  border-bottom: 1px solid #e9ecee;
}
@media (max-width: 1100px) {
  #top-news .news-content li {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 1rem;
  }
}

#top-news .news-content .date {
  white-space: nowrap;
  font-size: 1.6rem;
  line-height: 1.3125;
  min-width: 10rem;
}

#top-news .news-content .label {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 13.6rem;
  height: 2.6rem;
  margin: 0 3rem;
  white-space: nowrap;
  color: #fff;
  font-size: 1.4rem;
}
/*Information*/
#top-news .news-content .label[data-label="info"] {
  background-color: #104975;
}

/*Press Releases*/
#top-news .news-content .label[data-label="press"] {
  background-color: #7597ad;
}

/*New Products*/
#top-news .news-content .label[data-label="new-products"] {
  background-color: #0068b7;
}

/*Products Information*/
#top-news .news-content .label[data-label="products-info"] {
  background-color: #58b9dc;
}

/*Exhibition*/
#top-news .news-content .label[data-label="exhibition"] {
  background-color: #28a3b4;
}

/*Corporate*/
#top-news .news-content .label[data-label="corporate"] {
  background-color: #639bd5;
}

/*CSR*/
#top-news .news-content .label[data-label="csr"] {
  background-color: #97bc3e;
}

/*IR Information*/
#top-news .news-content .label[data-label="ir"] {
  background-color: #7c6f67;
}

/*Account Settlement*/
#top-news .news-content .label[data-label="account"] {
  background-color: #032038;
}

/*Job Opportunities*/
#top-news .news-content .label[data-label="job"] {
  background-color: #6d6cab;
}

/*Other*/
#top-news .news-content .label[data-label="other"] {
  background-color: #b0c5ce;
}

#top-news .news-content a {
  max-width: 68rem;
  font-size: 1.6rem;
  line-height: 1.3125;
  transition: color 0.12s;
}
@media (max-width: 1100px) {
  #top-news .news-content a {
    width: 100%;
  }
}

#top-news .news-content ul li a.hover {
  color: var(--main-color);
  text-decoration: underline;
}

#top-news .news-content .icon-pdf{
  width: 23px;
  height: auto;
  margin: 0 0.5rem;
}
#top-news .news-content .icon-blank{
  width: 10px;
  height: auto;
  margin: 0  0 0 0.5rem;
  vertical-align: baseline;
}


#top-news .link-news a {
  position: relative;
  display: grid;
  place-items: center;
  width: 17rem;
  height: 3.8rem;
  margin: 2rem 0 0 auto;
  border: 1px solid var(--main-color);
  background-color: #fff;
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: bold;
  transition: background-color 0.12s, color 0.12s;
}

#top-news .link-news a.hover {
  background-color: var(--main-color);
  color: #fff;
}

#top-news .link-news a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.12s;
}

#top-news .link-news a.hover::after {
  border-color: #fff;
}

#top-news .news-sns {
  width: 340px;
}



/* ----------------------------------------
Footer
---------------------------------------- */
footer {
  position: relative;
  background-color: var(--main-color);
}

footer .inner {
  padding: 8rem 6rem 3rem;
}

footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

footer .nav-list,
footer .sub-list {
  width: 100%;
  max-width: 26.4rem;
}

footer .nav-list dt,
footer .sub-list li:first-of-type {
  margin-bottom: 2rem;
}

footer dt,
footer dd a,
footer ul li a {
  color: #fff;
}

footer dt a.hover,
footer dd a.hover,
footer ul li a.hover {
  text-decoration: underline;
  text-underline-offset: 0.1rem;
}

footer .nav-list dt {
  font-size: 1.6rem;
  font-weight: bold;
}

footer .nav-list dd > span {
  display: block;
  margin: 0 0 0.8rem 0;
}

footer .nav-list dd a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
}

footer .sub-list li a {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3125;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid #005494;
}

footer .footer-bottom .left ul {
  display: flex;
}

footer .footer-bottom .left li:first-of-type {
  padding-right: 2rem;
}

footer .footer-bottom .left li:not(:first-of-type) {
  padding: 0 2rem;
  border-left: 1px solid #005494;
}

footer .footer-bottom .left li a {
  font-size: 1.2rem;
}

footer .footer-bottom .left .text {
  display: block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

footer .footer-bottom .right {
  text-align: right;
}

footer .footer-bottom .right .copy-link {
  display: block;
  max-width: 28rem;
  cursor: pointer;
  transition: opacity 0.12s;
}

footer .footer-bottom .right .copy-link.hover {
  opacity: 0.8;
}

footer small {
  display: block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1.75;
}



/* ----------------------------------------
.fixed-btn
---------------------------------------- */
.fixed-btn {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  z-index: 900;
}

.fixed-btn .contact a,
.fixed-btn .page-top {
  position: relative;
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}

.fixed-btn .page-top {
  margin-top: 1rem;
  border: 1px solid #e9ecee;
  background-color: #fff;
  cursor: pointer;
  transition: opacity 0.12s;
}

.fixed-btn .page-top::before {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
}

.fixed-btn .contact a::before,
.fixed-btn .page-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}

.fixed-btn .page-top:hover {
  opacity: 0.8;
}

/* ----------------------------------------
Breadcrumb
---------------------------------------- */
.breadcrumb li:last-of-type {
  font-weight: bold;
}

.breadcrumb li + li::before {
  content: ">";
  display: inline-block;
  text-align: center;
  width: 1em;
  height: 1em;
  margin: 0 0.2rem;
  font-weight: normal;
}

.breadcrumb li span,
.breadcrumb li a {
  font-size: 1.2rem;
  color: #555;
}

.breadcrumb li a.hover {
  text-decoration: underline;
}

/* ----------------------------------------
Slider Dots
---------------------------------------- */

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pagination li.slick-active button::before {
  background-color: var(--main-color);
}

.pagination li button {
  position: relative;
  width: 1rem;
  height: 1rem;
  color: transparent;
}

.pagination li button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #e9ecee;
}

/* ----------------------------------------
SNS
---------------------------------------- */
#c-sns .inner {
  height: 8rem;
  background-color: #0a52a8;
}

#c-sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: 100%;
}

#c-sns ul li a {
  transition: opacity 0.12s;
}

#c-sns ul li a.hover {
  opacity: 0.8;
}

#c-sns img {
  width: 3.2rem;
}



/* ----------------------------------------
.local
---------------------------------------- */
header .sub-nav li:not(:first-of-type) {
  border:none;
}

header nav{
  display: flex;
  align-items: center;
}

.local{
  margin: 0 0 0 3rem;
  padding: 0 0 0 3rem;
  border-left: 1px solid #015595;
}
.local-phone{
  margin: 0 0 0.4rem 0;
}
  .local-phone h3{
    font-size: 1.4rem;
    color: #fff;
  }
  .local-phone p{
  }
  .local-phone a{
    color: #f7ef08;
    font-size: 3.2rem;
    font-weight: bold;
  }
  .local-phone a.hover{
    color: #ffff00;
  }

.local-contact{
}
  .local-contact a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21.5rem;
    height: 4rem;
    background-color: #f7ef08;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);
  }
  .local-contact a.hover{
    background-color: #ffff00;
    box-shadow: none;
  }

  .local-contact a span{
    color: #0068b7;
    font-size: 2rem;
    font-weight: bold;
  }

  .local-contact a figure{
      width: 2.8rem;
      margin: 0 0 0 0.5rem;
  }

.ft-local{
  display: none;}

@media (max-width:1400px) {  
  .local{
    display: none;}
 
  footer .inner {
    padding: 8rem 6rem 10rem;}

  .ft-local{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    
    position: fixed;
    z-index: 900;
    bottom: 0;
    padding: 1rem 6rem;
    background-color:rgba(20,83,164,0.95);}
  
  .ft-local-phone{
    margin: 0 2rem 0.4rem 0;}
    .ft-local-phone h3{
      font-size: 1.4rem;
      color: #fff;}

    .ft-local-phone p{}

    .ft-local-phone a{
      color: #f7ef08;
      font-size: 3.2rem;
      font-weight: bold;}

    .ft-local-phone a.hover{
      color: #ffff00;}

  .ft-local-contact{}
    .ft-local-contact a{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 21.5rem;
      height: 4rem;
      background-color: #f7ef08;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);}
    .ft-local-contact a.hover{
      background-color: #ffff00;
      box-shadow: none;}

    .ft-local-contact a span{
      color: #0068b7;
      font-size: 2rem;
      font-weight: bold;}
  
    .ft-local-contact a figure{
        width: 2.8rem;
        margin: 0 0 0 0.5rem;}
}

@media (max-width: 1050px) and (min-width: 768px) {
    .ft-local-phone h3{
      font-size: 14px;}
    .ft-local-phone a{
      font-size: 32px;}
    .ft-local-contact a{
      width: 215px;
      height: 40px;}
    .ft-local-contact a span{
      font-size: 20px;}
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}


/* ----------------------------------------
.cn_label
---------------------------------------- */
.cn_label{
  padding: 0 6rem 1rem;
}

.cn_label ul{
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.cn_label-1{
  margin: 0 4rem 0 0;
}
.cn_label-1 img{
  width: 40px;
  height: auto;}

.cn_label-2{
  position:relative;
  margin: 0 4rem 0 0;
}

.cn_label-2::before{
  content:"";
  position:absolute;
  left:-2rem;
  top:20%;
  background-color:#005494;
  width:1px;
  height:1.2rem;
}

.cn_label-2::after{
  content:"";
  position:absolute;
  right:-2rem;
  top:20%;
  background-color:#005494;
  width:1px;
  height:1.2rem;
}

.cn_label-2 img{
  vertical-align: middle;
  width: 20px;
  height: auto;
  margin: 0 0.5rem 0 0;}

.cn_label-3{
}

@media (max-width:1400px) {
  footer .inner {
    padding: 8rem 6rem 3rem;}
  .cn_label{
    padding: 0 6rem 9rem;}
}

/* ----------------------------------------
#sns-modal-wechat
---------------------------------------- */
#sns-modal-wechat{
  width: calc(258px + 8rem);
  margin: 0 auto;
}

.sns-modal{
  width:100%;
  background-color: #fff;
  padding: 4rem;
  text-align: center;
  margin: 0 0 2rem 0;
}
.sns-modal h3{
  font-size: 2.1rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
.sns-modal img{
  width: auto;
  height: auto;
}

#sns-modal-wechat .link-btn{
  width: 20rem;
}

#sns-modal-wechat .link-btn a{
  min-height: 6rem;
}

#sns-modal-wechat .link-btn a::after{
  content:none;
}

#sns-modal-wechat .mfp-close{
  display: none;
}

/* ----------------------------------------
.btn-brandsite
---------------------------------------- */
header .sub-nav .btn-brandsite{
}

header .sub-nav .btn-brandsite a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 3rem;
}

header .sub-nav .btn-brandsite a.hover {
}

header .sub-nav .btn-brandsite a picture img{
  width: auto;
  height: 3rem;
  margin: 0 0.5rem 0 0;
}

/* ----------------------------------------
floating-bn
----------------------------------------*/
@media (max-width: 1400px){
  .floating-inner{display: none;}
}

.floating-bn {
  width: 35rem;
  background-color:#fff;
	position: fixed;
	right: 6rem;
	z-index: 900;
	opacity: 0;
	/*transform: translateY(100px);*/
}
.floating-bn img{
  vertical-align: top;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 30%);
  transition: box-shadow 0.12s, opacity 0.12s;
}
.floating-bn.hover img{
  box-shadow: none;
  opacity: 0.8;
}


.floating-bn.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
  opacity: 0;
	transform: translateY(100px);
  }
  to {
  opacity: 1;
	transform: translateY(0);
  }
}

.floating-bn.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  opacity: 1;
	transform: translateY(0);
  }
  to {
  opacity: 0;
	transform: translateY(100px);
  }
}

/* ----------------------------------------
.bnr-circle-text
----------------------------------------*/
.floating-bn{
}
.floating-bn .bnr-circle-text{
  width: 12.1rem;
  position: absolute;
  top: 50%;
  left: calc(50% + 1.5rem);
  z-index: 1;
  transform: translate(0, -50%);
}

.floating-bn .bnr-circle-textimg {
  box-shadow: none;
  animation: rightRotateText 30s linear infinite;
}

@keyframes rightRotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
